home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE22 / CLINIC / GenVars.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-04-07  |  134 b   |  16 lines

  1. unit GenVars;
  2.  
  3. interface
  4.  
  5. uses
  6.   Forms;
  7.  
  8. var
  9.   MinForm: TForm = nil;
  10.  
  11. implementation
  12.  
  13. initialization
  14.   Randomize
  15. end.
  16.